const compress/flate.maxStoreBlockSize
12 uses
compress/flate (current package)
deflate.go#L51: maxStoreBlockSize = 65535
deflate.go#L336: if d.windowEnd < maxStoreBlockSize {
deflate.go#L530: if d.windowEnd > 0 && (d.windowEnd == maxStoreBlockSize || d.sync) {
deflate.go#L583: d.window = make([]byte, maxStoreBlockSize)
deflate.go#L587: d.window = make([]byte, maxStoreBlockSize)
deflate.go#L592: d.window = make([]byte, maxStoreBlockSize)
deflate.go#L596: d.tokens = make([]token, maxStoreBlockSize)
deflatefast.go#L23: bufferReset = math.MaxInt32 - maxStoreBlockSize*2
deflatefast.go#L64: return &deflateFast{cur: maxStoreBlockSize, prev: make([]byte, 0, maxStoreBlockSize)}
deflatefast.go#L78: e.cur += maxStoreBlockSize
huffman_bit_writer.go#L321: if len(in) <= maxStoreBlockSize {
The pages are generated with Golds v0.4.9. (GOOS=linux GOARCH=amd64)